Skip to content

Commit 9b2a580

Browse files
committed
linux disk performance
1 parent 1d694e0 commit 9b2a580

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

opteryx/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# THIS FILE IS AUTOMATICALLY UPDATED DURING THE BUILD PROCESS
22
# DO NOT EDIT THIS FILE DIRECTLY
33

4-
__build__ = 1709
4+
__build__ = 1710
55
__author__ = "@joocer"
6-
__version__ = "0.26.0-beta.1709"
6+
__version__ = "0.26.0-beta.1710"
77

88
# Store the version here so:
99
# 1) we don't load dependencies by storing it in __init__.py

opteryx/connectors/disk_connector.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
given as a folder on local disk
99
"""
1010

11-
import mmap
1211
import os
1312
import time
1413
from typing import Dict
@@ -115,7 +114,7 @@ def read_blob(
115114
If an I/O error occurs while reading the file.
116115
"""
117116
from opteryx.compiled.io.disk_reader import read_file_mmap
118-
from opteryx.compiled.io.disk_reader import unmap_memory
117+
#from opteryx.compiled.io.disk_reader import unmap_memory
119118

120119
# Read using mmap for maximum speed
121120
mmap_obj = read_file_mmap(blob_name)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "opteryx"
3-
version = "0.26.0-beta.1709"
3+
version = "0.26.0-beta.1710"
44
description = "Query your data, where it lives"
55
requires-python = '>=3.11'
66
readme = {file = "README.md", content-type = "text/markdown"}

0 commit comments

Comments
 (0)