<?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 Re: Managing IPYNB cell timestamps in source control in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/managing-ipynb-cell-timestamps-in-source-control/m-p/159259#M54803</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/112587"&gt;@emorgoch&lt;/a&gt;,&lt;/P&gt;
&lt;P data-pm-slice="1 1 []"&gt;Thanks for raising this. This appears to be a regression rather than expected behaviour. Internally, the issue has been identified around .ipynb handling in Git folders, and the intended fix is to stop serialising these execution timestamp fields when outputs are not being exported. So the behaviour you’re seeing is being addressed and is not the intended long-term state. I don't have an ETA for this though.&lt;/P&gt;
&lt;P&gt;At the moment, the documented controls focus on the notebook format itself and whether notebook outputs are committed, but there isn’t a documented setting in the web UI that strips only specific cell metadata fields, such as startTime, finishTime, and submitTime, during commit.&lt;/P&gt;
&lt;P&gt;If your main goal is to reduce review noise, the two supported options today are either to switch those notebooks to Databricks source format, which is more lightweight for version control, or to stay on .ipynb and manage whether outputs are included through the commit_outputs configuration. You can see the notebook format options here in the &lt;A href="https://docs.databricks.com/aws/en/notebooks/notebook-format" rel="noopener noreferrer nofollow" target="_blank"&gt;Manage notebook format&lt;/A&gt; docs, and the broader Git folders behaviour here in &lt;A href="https://docs.databricks.com/aws/en/repos/" rel="noopener noreferrer nofollow" target="_blank"&gt;Databricks Git folders&lt;/A&gt; and &lt;A href="https://docs.databricks.com/aws/en/repos/git-operations-with-repos" rel="noopener noreferrer nofollow" target="_blank"&gt;Create and manage Git folders&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;If you need to stay with .ipynb because you want richer notebook fidelity, dashboards, or visualisations, that format does support those features better than the source format. The tradeoff is that .ipynb is a richer representation, so it can be less clean in source control than plain source notebooks. The docs call out that source format is the simpler code-only representation, while .ipynb captures notebook structure and optional outputs.&lt;/P&gt;
&lt;P&gt;For teams working primarily in the web IDE, there isn’t a documented pre-commit hook mechanism in the standard Git folders flow to automatically wipe just those timestamp fields before commit. If you are using a local clone or Git CLI-based workflow, then a custom pre-commit hook outside Databricks could sanitise those fields before pushing, but that would be a Git-side workaround rather than a built-in Databricks setting.&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>Tue, 16 Jun 2026 21:08:50 GMT</pubDate>
    <dc:creator>Ashwin_DSA</dc:creator>
    <dc:date>2026-06-16T21:08:50Z</dc:date>
    <item>
      <title>Managing IPYNB cell timestamps in source control</title>
      <link>https://community.databricks.com/t5/data-engineering/managing-ipynb-cell-timestamps-in-source-control/m-p/159204#M54801</link>
      <description>&lt;P&gt;We're in the process of converting over our Databricks notebooks from .py file to .ipynb. We have disabled storing notebook output in source control at the workspace level.&lt;/P&gt;&lt;P&gt;However, what we're discovering is that every cell in our notebooks has 3 timestamp fields that are being included as part of the cell metadata in the notebook code: startTime, finishTime, and submitTime. These 3 values get updated any time a cell is executed during development.&lt;/P&gt;&lt;P&gt;This is presenting an issue with source control and code reviews as they are getting marked as updated lines that need to be reviewed even though the code of an actual cell ay not have been changed.&lt;/P&gt;&lt;P&gt;Is there any way that these fields can either be excluded or wiped as a part of the commit process? We're primarily using the web IDE, but could also apply to scenarios using VSCode as well.&lt;/P&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="emorgoch_0-1781635989625.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/27859i4D4E1D0DCF8FC490/image-size/medium?v=v2&amp;amp;px=400" role="button" title="emorgoch_0-1781635989625.png" alt="emorgoch_0-1781635989625.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 16 Jun 2026 18:53:50 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/managing-ipynb-cell-timestamps-in-source-control/m-p/159204#M54801</guid>
      <dc:creator>emorgoch</dc:creator>
      <dc:date>2026-06-16T18:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Managing IPYNB cell timestamps in source control</title>
      <link>https://community.databricks.com/t5/data-engineering/managing-ipynb-cell-timestamps-in-source-control/m-p/159259#M54803</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/112587"&gt;@emorgoch&lt;/a&gt;,&lt;/P&gt;
&lt;P data-pm-slice="1 1 []"&gt;Thanks for raising this. This appears to be a regression rather than expected behaviour. Internally, the issue has been identified around .ipynb handling in Git folders, and the intended fix is to stop serialising these execution timestamp fields when outputs are not being exported. So the behaviour you’re seeing is being addressed and is not the intended long-term state. I don't have an ETA for this though.&lt;/P&gt;
&lt;P&gt;At the moment, the documented controls focus on the notebook format itself and whether notebook outputs are committed, but there isn’t a documented setting in the web UI that strips only specific cell metadata fields, such as startTime, finishTime, and submitTime, during commit.&lt;/P&gt;
&lt;P&gt;If your main goal is to reduce review noise, the two supported options today are either to switch those notebooks to Databricks source format, which is more lightweight for version control, or to stay on .ipynb and manage whether outputs are included through the commit_outputs configuration. You can see the notebook format options here in the &lt;A href="https://docs.databricks.com/aws/en/notebooks/notebook-format" rel="noopener noreferrer nofollow" target="_blank"&gt;Manage notebook format&lt;/A&gt; docs, and the broader Git folders behaviour here in &lt;A href="https://docs.databricks.com/aws/en/repos/" rel="noopener noreferrer nofollow" target="_blank"&gt;Databricks Git folders&lt;/A&gt; and &lt;A href="https://docs.databricks.com/aws/en/repos/git-operations-with-repos" rel="noopener noreferrer nofollow" target="_blank"&gt;Create and manage Git folders&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;If you need to stay with .ipynb because you want richer notebook fidelity, dashboards, or visualisations, that format does support those features better than the source format. The tradeoff is that .ipynb is a richer representation, so it can be less clean in source control than plain source notebooks. The docs call out that source format is the simpler code-only representation, while .ipynb captures notebook structure and optional outputs.&lt;/P&gt;
&lt;P&gt;For teams working primarily in the web IDE, there isn’t a documented pre-commit hook mechanism in the standard Git folders flow to automatically wipe just those timestamp fields before commit. If you are using a local clone or Git CLI-based workflow, then a custom pre-commit hook outside Databricks could sanitise those fields before pushing, but that would be a Git-side workaround rather than a built-in Databricks setting.&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>Tue, 16 Jun 2026 21:08:50 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/managing-ipynb-cell-timestamps-in-source-control/m-p/159259#M54803</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-06-16T21:08:50Z</dc:date>
    </item>
  </channel>
</rss>

