Hey @Vegove We are able to reproduce this at our end. The issue is specific to the upload format being chosen when writing to the service, it is not related to the Databricks environment or firewall restrictions.
Here is an alternative approach that can resolve this:
You can set the appendFormat to "featureCollection" and coalesceAppends to "False". The following code snippet can be used:
spark.conf.set("geoanalytics.sql.featureService.appendFormat", "featureCollection")
spark.conf.set("geoanalytics.sql.featureService.coalesceAppends", "False")
Can you please try it and let us know if it resolves the issue at your end? -Artemis
... View more