Skip to content

Commit

Permalink
add .parquet for the notices file stored in hdfs (#122)
Browse files Browse the repository at this point in the history
* add .parquet for the notices file stored in hdfs

* bump to 0.21.1
  • Loading branch information
FusRoman authored Oct 21, 2024
1 parent 707bb16 commit 12bf5fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fink_mm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "0.21.0"
__version__ = "0.21.1"
__distribution_schema_version__ = "1.3"
__observatory_schema_version__ = "1.1"
2 changes: 1 addition & 1 deletion fink_mm/gcn_stream/gcn_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def load_and_parse_gcn(
table,
root_path=gcn_rawdatapath,
partition_cols=["year", "month", "day"],
basename_template="{}_{}_{}".format(
basename_template="{}_{}_{}.parquet".format(
str(df["triggerId"].values[0]), time.time(), "{i}"
),
existing_data_behavior="overwrite_or_ignore",
Expand Down

0 comments on commit 12bf5fc

Please sign in to comment.