milvus/pyengine/engine/controller/index_file_handler.py

15 lines
265 B
Python
Raw Normal View History

2019-03-21 21:09:09 +08:00
2019-03-22 20:55:36 +08:00
class IndexFileHandler(object):
2019-03-21 21:09:09 +08:00
@staticmethod
def Create(filename, type):
# type means: csv, parquet
pass
@staticmethod
def Read(filename, type):
pass
@staticmethod
def Append(filename, type, record):
pass