<?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 json file existing in volume but not showing in UI in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/json-file-existing-in-volume-but-not-showing-in-ui/m-p/158508#M54724</link>
    <description>&lt;P&gt;I have some json files existing in a specific volume when I try to search for them they don't appear but when I query the the volume using python I am able to get them and read their content.&lt;/P&gt;&lt;P&gt;Any help ?&lt;/P&gt;</description>
    <pubDate>Sun, 07 Jun 2026 15:37:42 GMT</pubDate>
    <dc:creator>amirabedhiafi</dc:creator>
    <dc:date>2026-06-07T15:37:42Z</dc:date>
    <item>
      <title>json file existing in volume but not showing in UI</title>
      <link>https://community.databricks.com/t5/data-engineering/json-file-existing-in-volume-but-not-showing-in-ui/m-p/158508#M54724</link>
      <description>&lt;P&gt;I have some json files existing in a specific volume when I try to search for them they don't appear but when I query the the volume using python I am able to get them and read their content.&lt;/P&gt;&lt;P&gt;Any help ?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2026 15:37:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/json-file-existing-in-volume-but-not-showing-in-ui/m-p/158508#M54724</guid>
      <dc:creator>amirabedhiafi</dc:creator>
      <dc:date>2026-06-07T15:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: json file existing in volume but not showing in UI</title>
      <link>https://community.databricks.com/t5/data-engineering/json-file-existing-in-volume-but-not-showing-in-ui/m-p/158510#M54725</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/226887"&gt;@amirabedhiafi&lt;/a&gt;,&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea" data-pm-slice="1 1 []"&gt;Unity Catalog volumes are a storage layer for files, so it’s normal that you can read JSON files from /Volumes/... with Python or SQL, but not have those same files show up as searchable document content in the workspace search experience. Databricks documents volume file access separately from &lt;A href="https://docs.databricks.com/aws/en/search/" rel="noopener noreferrer nofollow" target="_blank"&gt;workspace search&lt;/A&gt; and from &lt;A href="https://docs.databricks.com/aws/en/volumes/volume-files" rel="noopener noreferrer nofollow" target="_blank"&gt;working with files in Unity Catalog volumes&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;The fact that the files are present and readable in the volume does not automatically mean their contents are indexed for search. JSON is absolutely supported as a file format in volumes and can be read programmatically, including with READ_FILES or standard Spark/Python workflows. But the built-in document-ingestion path for files in volumes, such as &lt;A href="https://docs.databricks.com/aws/en/generative-ai/agent-bricks/knowledge-assistant" rel="noopener noreferrer nofollow" target="_blank"&gt;Knowledge Assistant&lt;/A&gt;, currently supports txt, pdf, md, ppt/pptx, and doc/docx for files-in-volume sources, which is why raw JSON files won’t behave like indexed documents there.&lt;/P&gt;
&lt;P&gt;If the goal is to make the JSON content searchable, the pattern is to first load the JSON into a Delta table, for example, using read_files(..., format =&amp;gt; 'json'), and then, if needed, build a Databricks AI Search index on&amp;nbsp;that table. AI Search indexes are created from Delta tables rather than directly from raw files in a volume.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2026 17:09:03 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/json-file-existing-in-volume-but-not-showing-in-ui/m-p/158510#M54725</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-06-07T17:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: json file existing in volume but not showing in UI</title>
      <link>https://community.databricks.com/t5/data-engineering/json-file-existing-in-volume-but-not-showing-in-ui/m-p/158511#M54726</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/226887"&gt;@amirabedhiafi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;The workspace search bar simply doesn't crawl volume file contents or filenames - it's scoped to registered Unity Catalog metadata objects (tables, models) and notebook text.&lt;BR /&gt;Use Catalog Explorer to browse visually, or continue using Python&amp;nbsp;enumerate and read files programmatically. So, there's nothing broken - it's just working as designed.&lt;BR /&gt;&lt;BR /&gt;If my answer was helpful, please consider marking it as accepted solution.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2026 17:46:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/json-file-existing-in-volume-but-not-showing-in-ui/m-p/158511#M54726</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2026-06-07T17:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: json file existing in volume but not showing in UI</title>
      <link>https://community.databricks.com/t5/data-engineering/json-file-existing-in-volume-but-not-showing-in-ui/m-p/158522#M54728</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/226887"&gt;@amirabedhiafi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Catalog Explorer search won't return these files. This is likely because raw files in Volumes can change rapidly and aren't tracked in the system tables in the same way structured data is.&lt;/P&gt;&lt;P&gt;Instead, I would suggest using a Genie Space for this. Check out the example below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ShamenParis_2-1780867579183.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/27624i6939B0E10C99DA53/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ShamenParis_2-1780867579183.png" alt="ShamenParis_2-1780867579183.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2026 21:27:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/json-file-existing-in-volume-but-not-showing-in-ui/m-p/158522#M54728</guid>
      <dc:creator>ShamenParis</dc:creator>
      <dc:date>2026-06-07T21:27:26Z</dc:date>
    </item>
  </channel>
</rss>

