forked from georgia-tech-db/evadb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheva.yml
35 lines (29 loc) · 1.02 KB
/
eva.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
core:
location: "eva_datasets"
sqlalchemy_database_uri: 'mysql+pymysql://root@localhost/eva_catalog'
application: "eva"
mode: "debug" #release
executor:
# batch_mem_size configures the number of rows processed by the execution engine in one iteration
# #rows = max(1, row_mem_size / batch_mem_size)
batch_mem_size: 30000000 # 30mb
# batch size used for gpu_operations
gpu_batch_size: 1
gpus: {'130.207.125.60': [0]}
storage:
engine: "src.storage.petastorm_storage_engine.PetastormStorageEngine"
path_prefix: "/tmp"
# https://petastorm.readthedocs.io/en/latest/api.html#module-petastorm.reader
petastorm: {'cache_type' : 'local-disk',
'cache_location' : '.cache',
'cache_size_limit' : 4000000000, #4gb
'cache_row_size_estimate' : 512}
pyspark:
property: {'spark.logConf': 'true',
'spark.driver.memory': '10g',
'spark.sql.execution.arrow.pyspark.enabled': 'true'}
coalesce: 2
server:
host: "0.0.0.0"
port: 5432
socket_timeout: 60