<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Public hosted feature service intermittently returns 0 count and or 0 features in ArcGIS REST APIs and Services Questions</title>
    <link>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/public-hosted-feature-service-intermittently/m-p/1687605#M5097</link>
    <description>&lt;P&gt;I'm building an application that monitors a public map for changes. When I detect an update via dataLastEditDate, I query the layer for its features.&lt;/P&gt;&lt;P&gt;Intermittently, both returnCountOnly=true and full feature queries return 0 results for layers that definitely have data.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I've observed:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;returnCountOnly=true&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;sometimes returns&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;{"count": 0}&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for layers that are not empty&lt;/LI&gt;&lt;LI&gt;Full feature queries (where=1=1&amp;amp;outFields=*&amp;amp;f=json) sometimes return 0 features even when the count endpoint returns the correct count&lt;/LI&gt;&lt;LI&gt;The issue is transient — retrying after a few seconds usually recovers the data&lt;/LI&gt;&lt;LI&gt;I'm using POST requests with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;cacheHint=true&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and cache-busting timestamps&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;My questions:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;When a hosted feature service exceeds its request unit quota, is it expected for queries to silently return&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;{"count": 0}&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;or empty feature arrays instead of a 429 error? The empty response is indistinguishable from a legitimately empty layer.&lt;/LI&gt;&lt;LI&gt;Does the query format affect reliability under load? Would&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;f=pbf&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;or&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;f=geojson&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;be more resilient than&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;f=json?&lt;/LI&gt;&lt;LI&gt;Are&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;returnCountOnly&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and full feature queries served from different infrastructure? That would explain why count succeeds but features fail.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN&gt;Any insight appreciated. My current workaround is retry logic with backoff, but I'd like to understand the underlying behavior.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Mar 2026 02:49:40 GMT</pubDate>
    <dc:creator>StressCaramel</dc:creator>
    <dc:date>2026-03-02T02:49:40Z</dc:date>
    <item>
      <title>Public hosted feature service intermittently returns 0 count and or 0 features</title>
      <link>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/public-hosted-feature-service-intermittently/m-p/1687605#M5097</link>
      <description>&lt;P&gt;I'm building an application that monitors a public map for changes. When I detect an update via dataLastEditDate, I query the layer for its features.&lt;/P&gt;&lt;P&gt;Intermittently, both returnCountOnly=true and full feature queries return 0 results for layers that definitely have data.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I've observed:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;returnCountOnly=true&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;sometimes returns&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;{"count": 0}&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for layers that are not empty&lt;/LI&gt;&lt;LI&gt;Full feature queries (where=1=1&amp;amp;outFields=*&amp;amp;f=json) sometimes return 0 features even when the count endpoint returns the correct count&lt;/LI&gt;&lt;LI&gt;The issue is transient — retrying after a few seconds usually recovers the data&lt;/LI&gt;&lt;LI&gt;I'm using POST requests with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;cacheHint=true&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and cache-busting timestamps&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;My questions:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;When a hosted feature service exceeds its request unit quota, is it expected for queries to silently return&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;{"count": 0}&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;or empty feature arrays instead of a 429 error? The empty response is indistinguishable from a legitimately empty layer.&lt;/LI&gt;&lt;LI&gt;Does the query format affect reliability under load? Would&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;f=pbf&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;or&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;f=geojson&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;be more resilient than&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;f=json?&lt;/LI&gt;&lt;LI&gt;Are&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;returnCountOnly&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and full feature queries served from different infrastructure? That would explain why count succeeds but features fail.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN&gt;Any insight appreciated. My current workaround is retry logic with backoff, but I'd like to understand the underlying behavior.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2026 02:49:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/public-hosted-feature-service-intermittently/m-p/1687605#M5097</guid>
      <dc:creator>StressCaramel</dc:creator>
      <dc:date>2026-03-02T02:49:40Z</dc:date>
    </item>
  </channel>
</rss>

